summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/system_root_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/vi/system_root_service.h')
-rw-r--r--src/core/hle/service/vi/system_root_service.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/hle/service/vi/system_root_service.h b/src/core/hle/service/vi/system_root_service.h
index 6f07c39fd..16c997422 100644
--- a/src/core/hle/service/vi/system_root_service.h
+++ b/src/core/hle/service/vi/system_root_service.h
@@ -16,13 +16,15 @@ class IHOSBinderDriver;
namespace Service::VI {
+class FbshareBufferManager;
class IApplicationDisplayService;
enum class Policy : u32;
class ISystemRootService final : public ServiceFramework<ISystemRootService> {
public:
explicit ISystemRootService(Core::System& system_,
- std::shared_ptr<Nvnflinger::IHOSBinderDriver> binder_service);
+ std::shared_ptr<Nvnflinger::IHOSBinderDriver> binder_service,
+ std::shared_ptr<FbshareBufferManager> shared_buffer_manager);
~ISystemRootService() override;
private:
@@ -31,6 +33,7 @@ private:
Policy policy);
const std::shared_ptr<Nvnflinger::IHOSBinderDriver> m_binder_service;
+ const std::shared_ptr<FbshareBufferManager> m_shared_buffer_manager;
};
} // namespace Service::VI